home *** CD-ROM | disk | FTP | other *** search
/ Champak 33 / Volume 33 - JOGO DISK .iso / Games / snowboard.swf / scripts / frame_9 / PlaceObject2_360_83 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2007-01-15  |  1KB  |  59 lines

  1. onClipEvent(enterFrame){
  2.    _rotation = _root.santa._rotation;
  3.    _X = _X + xspeed;
  4.    _Y = _Y + yspeed;
  5.    yspeed += grav;
  6.    xspeed *= 0.93;
  7.    if(var1 == 1)
  8.    {
  9.       grav = 1;
  10.       yspeed = -10;
  11.       xspeed = - (random(45) + 39);
  12.       aa = xspeed;
  13.       var1 = 3;
  14.    }
  15.    if(var1 != 1 && var1 != 3)
  16.    {
  17.       grav = 0;
  18.    }
  19.    if(this.ball.hitTest(_root.player) && _root.player._currentframe == 4)
  20.    {
  21.       rejected = true;
  22.       xspeed = - aa;
  23.       yspeed = -8;
  24.       _root.aSound.play();
  25.    }
  26.    if(this.ball.hitTest(_root.player) && _root.player._currentframe == 6)
  27.    {
  28.       rejected = true;
  29.       xspeed = - aa;
  30.       yspeed = -8;
  31.       _root.aSound.play();
  32.    }
  33.    if(this.ball.hitTest(_root.player) && _root.player._currentframe == 7)
  34.    {
  35.       rejected = true;
  36.       xspeed = - aa;
  37.       yspeed = -8;
  38.       _root.aSound.play();
  39.    }
  40.    if(this.ball.hitTest(_root.player) && _root.player._currentframe != 4 && _root.player._currentframe != 6 && _root.player._currentframe != 7 && _currentframe != 2)
  41.    {
  42.       xspeed = 0;
  43.       gotoAndStop(2);
  44.       _root.shake.play();
  45.       _root.hud.lives--;
  46.    }
  47.    if(this.ball.hitTest(_root.santa) && rejected == true)
  48.    {
  49.       this.gotoAndStop(2);
  50.       _root.santa.gotoAndStop(3);
  51.       rejected = false;
  52.    }
  53.    if(_root.land.hitTest(_X,_Y + h,true))
  54.    {
  55.       this.gotoAndStop(2);
  56.       xspeed = 0;
  57.    }
  58. }
  59.